input~setXmlHealerOn(0) /* set healer on off */
say input~getXmlHealerOn() /* checks for xml healer */
feed=input~build(xmlr) /* Creates a SyndFeed out ouf the SFInput */
wfeed = feed~createWireFeed("rss_1.0") /* creates a WireFeed (abstract DM) */
feed~setFeedType(typet) /* sets the feedtype of the SyndFeed */
/* outputs from the SyndFeed, (independend object model) */
output=.bsf~new("com.sun.syndication.io.SyndFeedOutput")
say output~outputString(feed,1) /* usage of pritty print(0 yes or 1 no) */
say feed~getFeedType()
/* outputs from the WireFeed, (abstract data model) */
output2=.bsf~new("com.sun.syndication.io.WireFeedOutput")
say output2~outputString(wfeed)